forked from mavlink/c_uart_interface_example
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsystem_ids.h
More file actions
28 lines (21 loc) · 765 Bytes
/
system_ids.h
File metadata and controls
28 lines (21 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** This example is public domain. */
/**
* @file system_ids.h
*
* @brief System ID Numbers
*
* Defines the system id and component id
*
* @author Trent Lukaczyk, <aerialhedgehog@gmail.com>
* @author Jaycee Lock, <jaycee.lock@gmail.com>
*
*/
#ifndef SYSTEM_IDS_H_
#define SYSTEM_IDS_H_
// ------------------------------------------------------------------------------
// Parameters
// ------------------------------------------------------------------------------
const uint8_t sysid = 1; // The vehicle's system ID (parameter: MAV_SYS_ID)
const uint8_t autopilot_compid = 50; // The autopilot component (parameter: MAV_COMP_ID)
const uint8_t compid = 110; // The offboard computer component ID */
#endif // SYSTEM_IDS_H_