CTRE Phoenix 6 C++ 26.2.0
Loading...
Searching...
No Matches
StatusCodes.h
Go to the documentation of this file.
1/*
2 * Copyright (C) Cross The Road Electronics.  All rights reserved.
3 * License information can be found in CTRE_LICENSE.txt
4 * For support and suggestions contact support@ctr-electronics.com or file
5 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
6 */
7#pragma once
8
9#ifdef __cplusplus
10
11/* Make sure this is still compiled with C++ linkage
12 * when included from an `extern "C"` block */
13extern "C++" {
14
15#if __has_include("ctre/phoenix/export.h")
16#include "ctre/phoenix/export.h"
17#endif
18#include <compare>
19#include <iosfwd>
20
21namespace ctre {
22namespace phoenix {
23
24 /**
25 * \brief Status codes reported by APIs, including OK,
26 * warnings, and errors.
27 */
28 class StatusCode {
29 int value;
30
31 public:
32 /**
33 * \brief No Error
34 */
35 static constexpr int OK = 0;
36 /**
37 * \brief Diagnostic Server is busy with another command.
38 */
39 static constexpr int TaskIsBusy = -100;
40 /**
41 * \brief InvalidDeviceSpec
42 */
43 static constexpr int InvalidDeviceSpec = -101;
44 /**
45 * \brief Device is not present. Verify the device is connected and powered, and
46 * that the CAN bus is terminated.
47 */
48 static constexpr int EcuIsNotPresent = -102;
49 /**
50 * \brief Could not put the device into bootloader mode.
51 */
52 static constexpr int CouldNotEnterBl = -103;
53 /**
54 * \brief Could not confirm the device has entered the bootloader.
55 */
56 static constexpr int CouldNotConfirmBl = -104;
57 /**
58 * \brief Could not erase flash.
59 */
60 static constexpr int CouldNotErase = -105;
61 /**
62 * \brief Could not field upgrade the device.
63 */
64 static constexpr int CouldNotSendFlash = -106;
65 /**
66 * \brief Bootloader could not verify integrity of the flashed application.
67 */
68 static constexpr int CouldNotValidate = -107;
69 /**
70 * \brief Could not run the device firmware application.
71 */
72 static constexpr int CouldNotRunApp = -108;
73 /**
74 * \brief Unable to set ID to this device. Confirm that this action is valid for
75 * this device and the ID is valid (0-62).
76 */
77 static constexpr int CouldNotReqSetId = -109;
78 /**
79 * \brief Could not verify that the changed ID took effect.
80 */
81 static constexpr int CouldNotConfirmId = -110;
82 /**
83 * \brief Device field upgrade was successful.
84 */
85 static constexpr int FlashWasGood = -111;
86 /**
87 * \brief Device firmware application is too old.
88 */
89 static constexpr int AppTooOld = -112;
90 /**
91 * \brief Unable to set name to this device.
92 */
93 static constexpr int CouldNotReqSetDesc = -113;
94 /**
95 * \brief CompileSzIsWrong
96 */
97 static constexpr int CompileSzIsWrong = -114;
98 /**
99 * \brief Cannot set the ID of a gadgeteer device.
100 */
101 static constexpr int GadgeteerDeviceNoSetId = -115;
102 /**
103 * \brief This diagnostic action is not supported.
104 */
105 static constexpr int InvalidTask = -116;
106 /**
107 * \brief Not Implemented, check latest installer.
108 */
109 static constexpr int NotImplemented = -117;
110 /**
111 * \brief NoDevicesOnBus
112 */
113 static constexpr int NoDevicesOnBus = -118;
114 /**
115 * \brief MoreThanOneFile
116 */
117 static constexpr int MoreThanOneFile = -119;
118 /**
119 * \brief Specified device was not found. Verify the device is connected and
120 * powered, and that the CAN bus is terminated.
121 */
122 static constexpr int NodeIsInvalid = -120;
123 /**
124 * \brief InvalidDeviceDescriptor
125 */
126 static constexpr int InvalidDeviceDescriptor = -121;
127 /**
128 * \brief CouldNotSendCanFrame
129 */
130 static constexpr int CouldNotSendCanFrame = -123;
131 /**
132 * \brief NormalModeMsgNotPresent
133 */
134 static constexpr int NormalModeMsgNotPresent = -124;
135 /**
136 * \brief This feature is not supported.
137 */
138 static constexpr int FeatureNotSupported = -125;
139 /**
140 * \brief The diagnostic server is not field upgrading any devices.
141 */
142 static constexpr int NotUpdating = -126;
143 /**
144 * \brief CorruptedPOST
145 */
146 static constexpr int CorruptedPOST = -127;
147 /**
148 * \brief This device did not report any available configs. Verify firmware and
149 * diagnostics are up-to-date.
150 */
151 static constexpr int NoConfigs = -128;
152 /**
153 * \brief ConfigFailed
154 */
155 static constexpr int ConfigFailed = -129;
156 /**
157 * \brief Unable to factory default this device.
158 */
159 static constexpr int CouldNotReqFactoryDefault = -130;
160 /**
161 * \brief CustomNameNotSupported
162 */
163 static constexpr int CustomNameNotSupported = -131;
164 /**
165 * \brief The configs read from the device do not match the configs that were
166 * written.
167 */
168 static constexpr int ConfigReadWriteMismatch = -132;
169 /**
170 * \brief Could not apply the device configs.
171 */
172 static constexpr int CouldNotReqSetConfigs = -133;
173 /**
174 * \brief InsufficientSz
175 */
176 static constexpr int InsufficientSz = -134;
177 /**
178 * \brief This feature is not supported for this device model.
179 */
180 static constexpr int InvalidModel = -135;
181 /**
182 * \brief CouldNotReqDevInfo
183 */
184 static constexpr int CouldNotReqDevInfo = -140;
185 /**
186 * \brief This device does not support new controls.
187 */
188 static constexpr int NoControls = -141;
189 /**
190 * \brief DeviceIsNull
191 */
192 static constexpr int DeviceIsNull = -142;
193 /**
194 * \brief DeviceDidNotRespondToDiagReq
195 */
196 static constexpr int DeviceDidNotRespondToDiagReq = -143;
197 /**
198 * \brief This feature requires Tuner X.
199 */
200 static constexpr int OnlySupportedInTunerX = -144;
201 /**
202 * \brief Command-line issue with caniv.
203 */
204 static constexpr int CanivCliError = -145;
205 /**
206 * \brief InvalidCrfBadHeader
207 */
208 static constexpr int InvalidCrfBadHeader = -200;
209 /**
210 * \brief InvalidCrfFileSzInvald
211 */
212 static constexpr int InvalidCrfFileSzInvald = -201;
213 /**
214 * \brief Specified CRF is for the wrong product.
215 */
216 static constexpr int InvalidCrfWrongProduct = -202;
217 /**
218 * \brief InvalidCrfNoSects
219 */
220 static constexpr int InvalidCrfNoSects = -203;
221 /**
222 * \brief InvalidCrfBadSectHeader
223 */
224 static constexpr int InvalidCrfBadSectHeader = -204;
225 /**
226 * \brief InvalidCrfBadSectSize
227 */
228 static constexpr int InvalidCrfBadSectSize = -205;
229 /**
230 * \brief Specified CRF file could not be found.
231 */
232 static constexpr int NoCrfFile = -206;
233 /**
234 * \brief CouldNotFindDynamicId
235 */
236 static constexpr int CouldNotFindDynamicId = -300;
237 /**
238 * \brief DidNotGetDhcp
239 */
240 static constexpr int DidNotGetDhcp = -301;
241 /**
242 * \brief DidNotGetFullDhcp
243 */
244 static constexpr int DidNotGetFullDhcp = -302;
245 /**
246 * \brief InvalidLicenseResp
247 */
248 static constexpr int InvalidLicenseResp = -350;
249 /**
250 * \brief InvalidCanivCache
251 */
252 static constexpr int InvalidCanivCache = -351;
253 /**
254 * \brief CannotOpenSerialPort
255 */
256 static constexpr int CannotOpenSerialPort = -500;
257 /**
258 * \brief CannotWriteSerialPort
259 */
260 static constexpr int CannotWriteSerialPort = -501;
261 /**
262 * \brief CannotReadSerialPort
263 */
264 static constexpr int CannotReadSerialPort = -502;
265 /**
266 * \brief CannotSerialToDevice
267 */
268 static constexpr int CannotSerialToDevice = -503;
269 /**
270 * \brief NoSerialControlFrameResp
271 */
272 static constexpr int NoSerialControlFrameResp = -504;
273 /**
274 * \brief CannotOpenUdpPort
275 */
276 static constexpr int CannotOpenUdpPort = -600;
277 /**
278 * \brief CannotWriteUdpPort
279 */
280 static constexpr int CannotWriteUdpPort = -601;
281 /**
282 * \brief CannotReadUdpPort
283 */
284 static constexpr int CannotReadUdpPort = -602;
285 /**
286 * \brief CannotUdpToDevice
287 */
288 static constexpr int CannotUdpToDevice = -603;
289 /**
290 * \brief NoUdpControlFrameResp
291 */
292 static constexpr int NoUdpControlFrameResp = -604;
293 /**
294 * \brief TimeoutIso15Response
295 */
296 static constexpr int TimeoutIso15Response = -605;
297 /**
298 * \brief InvalidJson
299 */
300 static constexpr int InvalidJson = -700;
301 /**
302 * \brief The user application is shutting down.
303 */
304 static constexpr int AppIsTerminating = -800;
305 /**
306 * \brief CAN message is stale, data is valid but old. Check the CAN bus wiring,
307 * CAN bus utilization, and power to the device.
308 */
309 static constexpr int CanMessageStale = 1000;
310 /**
311 * \brief Buffer is full, cannot insert more data.
312 */
313 static constexpr int BufferFull = 1006;
314 /**
315 * \brief PulseWidthSensorNotPresent
316 */
317 static constexpr int PulseWidthSensorNotPresent = 1010;
318 /**
319 * \brief General Warning Occurred.
320 */
321 static constexpr int GeneralWarning = 1100;
322 /**
323 * \brief Firm Vers could not be retrieved. Use Phoenix Tuner X to check ID and
324 * firmware(CRF) version.
325 */
326 static constexpr int FirmVersionCouldNotBeRetrieved = 1103;
327 /**
328 * \brief This feature will be supported in a future update.
329 */
330 static constexpr int FeaturesNotAvailableYet = 1104;
331 /**
332 * \brief The control mode is not valid for this function.
333 */
334 static constexpr int ControlModeNotValid = 1105;
335 /**
336 * \brief This control mode is not supported yet. A future release will
337 * supported this soon.
338 */
339 static constexpr int ControlModeNotSupportedYet = 1106;
340 /**
341 * \brief Motor Controller must have >= 3.2 firmware for motion profile control
342 * mode.
343 */
344 static constexpr int MotProfFirmThreshold = 1109;
345 /**
346 * \brief Motor Controller must have >= 3.4 firmware for advanced PID0/PID1
347 * features.
348 */
349 static constexpr int MotProfFirmThreshold2 = 1110;
350 /**
351 * \brief SimDeviceNotFound
352 */
353 static constexpr int SimDeviceNotFound = 1200;
354 /**
355 * \brief SimPhysicsTypeNotSupported
356 */
357 static constexpr int SimPhysicsTypeNotSupported = 1201;
358 /**
359 * \brief SimDeviceAlreadyExists
360 */
361 static constexpr int SimDeviceAlreadyExists = 1202;
362 /**
363 * \brief Could not transmit CAN Frame.
364 */
365 static constexpr int TxFailed = -1001;
366 /**
367 * \brief An invalid argument was passed into the function/VI, such as a null
368 * pointer.
369 */
370 static constexpr int InvalidParamValue = -1002;
371 /**
372 * \brief CAN frame not received/too-stale. Check the CAN bus wiring, CAN bus
373 * utilization, and power to the device.
374 */
375 static constexpr int RxTimeout = -1003;
376 /**
377 * \brief CAN Transmit timed out.
378 */
379 static constexpr int TxTimeout = -1004;
380 /**
381 * \brief ArbID is incorrect.
382 */
383 static constexpr int UnexpectedArbId = -1005;
384 /**
385 * \brief CanOverflowed
386 */
387 static constexpr int CanOverflowed = -1006;
388 /**
389 * \brief Sensor Not Present.
390 */
391 static constexpr int SensorNotPresent = -1007;
392 /**
393 * \brief Firmware Too Old. Use Phoenix Tuner X to field upgrade your CTRE CAN
394 * device firmware(CRF). Then restart your robot application to clear
395 * this error.
396 */
397 static constexpr int FirmwareTooOld = -1008;
398 /**
399 * \brief Control Frame Period could not be changed. Most likely it is not
400 * being transmitted.
401 */
402 static constexpr int CouldNotChangePeriod = -1009;
403 /**
404 * \brief BufferFailure
405 */
406 static constexpr int BufferFailure = -1010;
407 /**
408 * \brief Firmware is legacy non-FRC version. Use Phoenix Tuner X to field
409 * upgrade your CTRE CAN device firmware(CRF). Firmware greater than
410 * 20.0 required.
411 */
412 static constexpr int FirmwareNonFRC = -1011;
413 /**
414 * \brief General Error Occurred.
415 */
416 static constexpr int GeneralError = -1100;
417 /**
418 * \brief No new response to update signal.
419 */
420 static constexpr int SigNotUpdated = -1200;
421 /**
422 * \brief NotAllPIDValuesUpdated
423 */
424 static constexpr int NotAllPIDValuesUpdated = -1201;
425 /**
426 * \brief GEN_PORT_ERROR
427 */
428 static constexpr int GEN_PORT_ERROR = -1300;
429 /**
430 * \brief PORT_MODULE_TYPE_MISMATCH
431 */
432 static constexpr int PORT_MODULE_TYPE_MISMATCH = -1301;
433 /**
434 * \brief GEN_MODULE_ERROR
435 */
436 static constexpr int GEN_MODULE_ERROR = -1400;
437 /**
438 * \brief MODULE_NOT_INIT_SET_ERROR
439 */
440 static constexpr int MODULE_NOT_INIT_SET_ERROR = -1401;
441 /**
442 * \brief MODULE_NOT_INIT_GET_ERROR
443 */
444 static constexpr int MODULE_NOT_INIT_GET_ERROR = -1402;
445 /**
446 * \brief Wheel Radius is too small, cannot get distance traveled.
447 */
448 static constexpr int WheelRadiusTooSmall = -1500;
449 /**
450 * \brief Ticks per revolution is 0, cannot get heading.
451 */
452 static constexpr int TicksPerRevZero = -1501;
453 /**
454 * \brief Distance between wheels is too small, cannot get heading.
455 */
456 static constexpr int DistanceBetweenWheelsTooSmall = -1502;
457 /**
458 * \brief GainsAreNotSet
459 */
460 static constexpr int GainsAreNotSet = -1503;
461 /**
462 * \brief Use RemoteLimitSwitchSource instead of LimitSwitchSource.
463 */
464 static constexpr int WrongRemoteLimitSwitchSource = -1504;
465 /**
466 * \brief Motor Controller Voltage Compensation should not be used with
467 * setVoltage(). This causes compensation to happen twice. Disable
468 * Voltage Compensation by calling enableVoltageCompensation(false) in
469 * order to use setVoltage().
470 */
471 static constexpr int DoubleVoltageCompensatingWPI = -1505;
472 /**
473 * \brief CANdleAnimSlotOutOfBounds
474 */
475 static constexpr int CANdleAnimSlotOutOfBounds = -1506;
476 /**
477 * \brief IncompatibleMode
478 */
479 static constexpr int IncompatibleMode = -1600;
480 /**
481 * \brief Handle passed into function is incorrect.
482 */
483 static constexpr int InvalidHandle = -1601;
484 /**
485 * \brief Features requires newer firmware version.
486 */
487 static constexpr int FeatureRequiresHigherFirm = -1700;
488 /**
489 * \brief Config factory default features require firmware >=3.10.
490 */
491 static constexpr int ConfigFactoryDefaultRequiresHigherFirm = -1702;
492 /**
493 * \brief Config Motion S Curve Strength features require firmware >=4.16.
494 */
495 static constexpr int ConfigMotionSCurveRequiresHigherFirm = -1703;
496 /**
497 * \brief Talon FX(Falcon 500) Firmware Too Old. Use Phoenix Tuner to field
498 * upgrade your CTRE CAN device firmware(CRF) to >=20.3. Then restart
499 * your robot application to clear this error.
500 */
501 static constexpr int TalonFXFirmwarePreVBatDetect = -1704;
502 /**
503 * \brief CANdleAnimationsRequireHigherFirm
504 */
505 static constexpr int CANdleAnimationsRequireHigherFirm = -1705;
506 /**
507 * \brief LibraryCouldNotBeLoaded
508 */
509 static constexpr int LibraryCouldNotBeLoaded = -1800;
510 /**
511 * \brief MissingRoutineInLibrary
512 */
513 static constexpr int MissingRoutineInLibrary = -1801;
514 /**
515 * \brief ResourceNotAvailable
516 */
517 static constexpr int ResourceNotAvailable = -1802;
518 /**
519 * \brief Could not find music file specified, try specifying an absolute path.
520 */
521 static constexpr int MusicFileNotFound = -1900;
522 /**
523 * \brief Music file size is incorrect, could not parse correctly. Ensure you're
524 * using Tuner to generate file.
525 */
526 static constexpr int MusicFileWrongSize = -1901;
527 /**
528 * \brief Music file version is too new, update Phoenix to utilize this file.
529 */
530 static constexpr int MusicFileTooNew = -1902;
531 /**
532 * \brief Music file is invalid. Ensure you're using Tuner to generate file.
533 */
534 static constexpr int MusicFileInvalid = -1903;
535 /**
536 * \brief An invalid orchestra action occurred. Ensure a music file is loaded.
537 */
538 static constexpr int InvalidOrchestraAction = -1904;
539 /**
540 * \brief This music file version is too old. Regenerate file using Tuner.
541 */
542 static constexpr int MusicFileTooOld = -1905;
543 /**
544 * \brief Music interrupted due to one of the instruments being commanded a
545 * different control mode. Press Play to resume music.
546 */
547 static constexpr int MusicInterrupted = -1906;
548 /**
549 * \brief This device doesn't support MusicTone control mode.
550 */
551 static constexpr int MusicNotSupported = -1907;
552 /**
553 * \brief kInvalidInterface
554 */
555 static constexpr int kInvalidInterface = -2000;
556 /**
557 * \brief kInvalidGuid
558 */
559 static constexpr int kInvalidGuid = -2001;
560 /**
561 * \brief kInvalidClass
562 */
563 static constexpr int kInvalidClass = -2002;
564 /**
565 * \brief kInvalidProtocol
566 */
567 static constexpr int kInvalidProtocol = -2003;
568 /**
569 * \brief kInvalidPath
570 */
571 static constexpr int kInvalidPath = -2004;
572 /**
573 * \brief kGeneralWinUsbError
574 */
575 static constexpr int kGeneralWinUsbError = -2005;
576 /**
577 * \brief kFailedSetup
578 */
579 static constexpr int kFailedSetup = -2006;
580 /**
581 * \brief kListenFailed
582 */
583 static constexpr int kListenFailed = -2007;
584 /**
585 * \brief kSendFailed
586 */
587 static constexpr int kSendFailed = -2008;
588 /**
589 * \brief kReceiveFailed
590 */
591 static constexpr int kReceiveFailed = -2009;
592 /**
593 * \brief kInvalidRespFormat
594 */
595 static constexpr int kInvalidRespFormat = -2010;
596 /**
597 * \brief kWinUsbInitFailed
598 */
599 static constexpr int kWinUsbInitFailed = -2011;
600 /**
601 * \brief kWinUsbQueryFailed
602 */
603 static constexpr int kWinUsbQueryFailed = -2012;
604 /**
605 * \brief kWinUsbGeneralError
606 */
607 static constexpr int kWinUsbGeneralError = -2013;
608 /**
609 * \brief kAccessDenied
610 */
611 static constexpr int kAccessDenied = -2014;
612 /**
613 * \brief kFirmwareInvalidResponse
614 */
615 static constexpr int kFirmwareInvalidResponse = -2015;
616 /**
617 * \brief This StatusCode has not been initialized. Make sure the StatusCode is
618 * getting assigned to the return of a method.
619 */
620 static constexpr int StatusCodeNotInitialized = -10000;
621 /**
622 * \brief WarningNotInitialized
623 */
624 static constexpr int WarningNotInitialized = 10000;
625 /**
626 * \brief The timestamp reported by CANivore is at least 10ms older than the
627 * timestamp reported by the system, indicating it's fallen out of sync.
628 * This does not impact the data of this message, only the timing.
629 */
630 static constexpr int HwTimestampOutOfSync = 10001;
631 /**
632 * \brief Do not apply or refresh configs periodically, as configs are blocking.
633 */
634 static constexpr int FrequentConfigCalls = 10002;
635 /**
636 * \brief The given network/CAN bus is invalid. Verify that any status signals
637 * provided are on the same network and that the network is present.
638 */
639 static constexpr int InvalidNetwork = -10001;
640 /**
641 * \brief The CAN bus does not support multi-signal synchronization.
642 */
643 static constexpr int MultiSignalNotSupported = -10002;
644 /**
645 * \brief Could not cast from base value to this particular signal's type
646 */
647 static constexpr int CouldNotCast = -10003;
648 /**
649 * \brief Could not find this value when searching for it
650 */
651 static constexpr int NotFound = -10004;
652 /**
653 * \brief This is not supported
654 */
655 static constexpr int NotSupported = -10005;
656 /**
657 * \brief Could not determine context from this device hash
658 */
659 static constexpr int MissingContext = -10006;
660 /**
661 * \brief Model name in license file does not match model name of selected
662 * device.
663 */
664 static constexpr int ModelMismatch = -10007;
665 /**
666 * \brief Serial Number in license file does not match model name of selected
667 * device.
668 */
669 static constexpr int SerialMismatch = -10008;
670 /**
671 * \brief Could not find specified file.
672 */
673 static constexpr int NoFile = -10009;
674 /**
675 * \brief License did not successfully download to Device.
676 */
677 static constexpr int LicenseDownloadFailed = -10010;
678 /**
679 * \brief Self Test report does not have any values, is the firmware up to date?
680 */
681 static constexpr int SelfTestIsEmpty = -10011;
682 /**
683 * \brief Failed to lookup signal properties. This can happen if the fimware is
684 * too new and supports signals that older APIs do not support.
685 */
686 static constexpr int SignalLookupFailed = -10012;
687 /**
688 * \brief The current mode of the device is invalid for getting this signal.
689 */
690 static constexpr int InvalidModeToGetSignal = -10013;
691 /**
692 * \brief Device is not licensed. Cannot get any data from it.
693 */
694 static constexpr int UnlicensedDevice = -10014;
695 /**
696 * \brief Size is invalid.
697 */
698 static constexpr int InvalidSize = -10015;
699 /**
700 * \brief InvalidLicenseResponse
701 */
702 static constexpr int InvalidLicenseResponse = -10016;
703 /**
704 * \brief InvalidContext
705 */
706 static constexpr int InvalidContext = -10017;
707 /**
708 * \brief InternalError
709 */
710 static constexpr int InternalError = -10018;
711 /**
712 * \brief kDeviceResponseIncorrect
713 */
714 static constexpr int kDeviceResponseIncorrect = -10019;
715 /**
716 * \brief kErrorPollingForDevices
717 */
718 static constexpr int kErrorPollingForDevices = -10020;
719 /**
720 * \brief Device firmware could not be retrieved. Check that the device is
721 * running v6 firmware, the device ID is correct, the specified CAN bus
722 * is correct, and the device is powered.
723 */
724 static constexpr int CouldNotRetrieveV6Firmware = -10021;
725 /**
726 * \brief Device firmware could not be decoded. Check that the device is running
727 * v6 firmware, the device ID is correct, the specified CAN bus is
728 * correct, and the device is powered.
729 */
730 static constexpr int CouldNotDecodeDeviceFirmware = -10022;
731 /**
732 * \brief The values specified for master are in valid. Make sure the Device ID
733 * of master are correct.
734 */
735 static constexpr int InvalidIDToFollow = -10023;
736 /**
737 * \brief Using a Pro only feature on an unlicensed device. The device may not
738 * behave as expected if it continues to operate while unlicensed.
739 */
740 static constexpr int UsingProFeatureOnUnlicensedDevice = -10024;
741 /**
742 * \brief Firmware Too New. Use Phoenix Tuner X to field upgrade your CTRE CAN
743 * device firmware(CRF) to a compatible version. Then restart your robot
744 * application to clear this error.
745 */
746 static constexpr int FirmwareTooNew = -10025;
747 /**
748 * \brief The data frame could not be serialized for transmit.
749 */
750 static constexpr int CouldNotSerialize = -10026;
751 /**
752 * \brief The mechanism is disabled due to a fault in one of the devices.
753 */
754 static constexpr int MechanismFaulted = -10027;
755 /**
756 * \brief Firmware version is not compatible with this version of Phoenix. Make
757 * sure your firmware and API major versions match.
758 */
759 static constexpr int FirmwareVersNotCompatible = -10028;
760 /**
761 * \brief Could not find specified directory.
762 */
763 static constexpr int DirectoryMissing = -10029;
764 /**
765 * \brief This API version is too old for the firmware on the device. Either
766 * upgrade the API to a newer version or downgrade the device firmware to
767 * an older version for correct behavior.
768 */
769 static constexpr int ApiTooOld = -10030;
770 /**
771 * \brief The signal logger is not running. Start the signal logger before
772 * writing any signals.
773 */
774 static constexpr int LoggerNotRunning = -10031;
775 /**
776 * \brief Blocking operations, such as configs, cannot have a timeout of 0. Pass
777 * in a non-zero timeout (typically 0.050+ seconds) for normal operation.
778 */
779 static constexpr int TimeoutCannotBeZero = -10032;
780 /**
781 * \brief Device cannot be licensed while it is control enabled. Disable and
782 * neutral the device to apply the licenses.
783 */
784 static constexpr int CannotLicenseWhileEnabled = -10033;
785 /**
786 * \brief Could not open or read the given file.
787 */
788 static constexpr int InvalidFile = -10034;
789 /**
790 * \brief The given hoot log requires an older version of Phoenix API.
791 */
792 static constexpr int HootLogTooOld = -10035;
793 /**
794 * \brief The given hoot log requires a newer version of Phoenix API.
795 */
796 static constexpr int HootLogTooNew = -10036;
797 /**
798 * \brief Hoot log is not licensed. Cannot get any data from it.
799 */
800 static constexpr int UnlicensedHootLog = -10037;
801 /**
802 * \brief The simulation timing cannot be advanced by a time step while
803 * unpaused. Pause the simulator before advancing time.
804 */
805 static constexpr int CannotStepWhileUnpaused = -10038;
806 /**
807 * \brief Hoot replay does not support replaying multiple files. Ensure that
808 * only one file is loaded at a time.
809 */
810 static constexpr int MultipleReplayNotSupported = -10039;
811 /**
812 * \brief The maximum number of loggable user signals has been exceeded.
813 * Additional user signals will not be logged.
814 */
815 static constexpr int UserSignalLimitExceeded = -10040;
816 /**
817 * \brief The provided model was not a valid device type.
818 */
819 static constexpr int InvalidDeviceModel = -10041;
820 /**
821 * \brief The requested signal is missing or not supported. Verify that the
822 * device firmware is up-to-date.
823 */
824 static constexpr int SignalNotSupportedOrMissing = -10042;
825 /**
826 * \brief The schema for the logged user signal is invalid or missing. Ensure
827 * that the schema is written before the user signal.
828 */
829 static constexpr int MissingSchema = -10043;
830
831 constexpr StatusCode(int val) : value{val} {}
833
834 constexpr friend bool operator==(StatusCode, StatusCode) = default;
835 constexpr friend auto operator<=>(StatusCode, StatusCode) = default;
836
837 constexpr operator int() const { return value; }
838
839 constexpr bool operator==(int other) const
840 {
841 return value == other;
842 }
843 constexpr auto operator<=>(int other) const
844 {
845 return value <=> other;
846 }
847
848 /**
849 * \returns true if this code is an error
850 */
851 constexpr bool IsError() const { return value < 0; }
852 /**
853 * \returns true if this code is a warning
854 */
855 constexpr bool IsWarning() const { return value > 0; }
856 /**
857 * \returns true if this code is OK
858 */
859 constexpr bool IsOK() const { return value == OK; }
860
861 /**
862 * Gets the name of this StatusCode
863 *
864 * \returns Name of this StatusCode
865 */
866 constexpr const char *GetName() const
867 {
868 switch (value) {
869 case 0: return "OK";
870 case -100: return "TaskIsBusy";
871 case -101: return "InvalidDeviceSpec";
872 case -102: return "EcuIsNotPresent";
873 case -103: return "CouldNotEnterBl";
874 case -104: return "CouldNotConfirmBl";
875 case -105: return "CouldNotErase";
876 case -106: return "CouldNotSendFlash";
877 case -107: return "CouldNotValidate";
878 case -108: return "CouldNotRunApp";
879 case -109: return "CouldNotReqSetId";
880 case -110: return "CouldNotConfirmId";
881 case -111: return "FlashWasGood";
882 case -112: return "AppTooOld";
883 case -113: return "CouldNotReqSetDesc";
884 case -114: return "CompileSzIsWrong";
885 case -115: return "GadgeteerDeviceNoSetId";
886 case -116: return "InvalidTask";
887 case -117: return "NotImplemented";
888 case -118: return "NoDevicesOnBus";
889 case -119: return "MoreThanOneFile";
890 case -120: return "NodeIsInvalid";
891 case -121: return "InvalidDeviceDescriptor";
892 case -123: return "CouldNotSendCanFrame";
893 case -124: return "NormalModeMsgNotPresent";
894 case -125: return "FeatureNotSupported";
895 case -126: return "NotUpdating";
896 case -127: return "CorruptedPOST";
897 case -128: return "NoConfigs";
898 case -129: return "ConfigFailed";
899 case -130: return "CouldNotReqFactoryDefault";
900 case -131: return "CustomNameNotSupported";
901 case -132: return "ConfigReadWriteMismatch";
902 case -133: return "CouldNotReqSetConfigs";
903 case -134: return "InsufficientSz";
904 case -135: return "InvalidModel";
905 case -140: return "CouldNotReqDevInfo";
906 case -141: return "NoControls";
907 case -142: return "DeviceIsNull";
908 case -143: return "DeviceDidNotRespondToDiagReq";
909 case -144: return "OnlySupportedInTunerX";
910 case -145: return "CanivCliError";
911 case -200: return "InvalidCrfBadHeader";
912 case -201: return "InvalidCrfFileSzInvald";
913 case -202: return "InvalidCrfWrongProduct";
914 case -203: return "InvalidCrfNoSects";
915 case -204: return "InvalidCrfBadSectHeader";
916 case -205: return "InvalidCrfBadSectSize";
917 case -206: return "NoCrfFile";
918 case -300: return "CouldNotFindDynamicId";
919 case -301: return "DidNotGetDhcp";
920 case -302: return "DidNotGetFullDhcp";
921 case -350: return "InvalidLicenseResp";
922 case -351: return "InvalidCanivCache";
923 case -500: return "CannotOpenSerialPort";
924 case -501: return "CannotWriteSerialPort";
925 case -502: return "CannotReadSerialPort";
926 case -503: return "CannotSerialToDevice";
927 case -504: return "NoSerialControlFrameResp";
928 case -600: return "CannotOpenUdpPort";
929 case -601: return "CannotWriteUdpPort";
930 case -602: return "CannotReadUdpPort";
931 case -603: return "CannotUdpToDevice";
932 case -604: return "NoUdpControlFrameResp";
933 case -605: return "TimeoutIso15Response";
934 case -700: return "InvalidJson";
935 case -800: return "AppIsTerminating";
936 case 1000: return "CanMessageStale";
937 case 1006: return "BufferFull";
938 case 1010: return "PulseWidthSensorNotPresent";
939 case 1100: return "GeneralWarning";
940 case 1103: return "FirmVersionCouldNotBeRetrieved";
941 case 1104: return "FeaturesNotAvailableYet";
942 case 1105: return "ControlModeNotValid";
943 case 1106: return "ControlModeNotSupportedYet";
944 case 1109: return "MotProfFirmThreshold";
945 case 1110: return "MotProfFirmThreshold2";
946 case 1200: return "SimDeviceNotFound";
947 case 1201: return "SimPhysicsTypeNotSupported";
948 case 1202: return "SimDeviceAlreadyExists";
949 case -1001: return "TxFailed";
950 case -1002: return "InvalidParamValue";
951 case -1003: return "RxTimeout";
952 case -1004: return "TxTimeout";
953 case -1005: return "UnexpectedArbId";
954 case -1006: return "CanOverflowed";
955 case -1007: return "SensorNotPresent";
956 case -1008: return "FirmwareTooOld";
957 case -1009: return "CouldNotChangePeriod";
958 case -1010: return "BufferFailure";
959 case -1011: return "FirmwareNonFRC";
960 case -1100: return "GeneralError";
961 case -1200: return "SigNotUpdated";
962 case -1201: return "NotAllPIDValuesUpdated";
963 case -1300: return "GEN_PORT_ERROR";
964 case -1301: return "PORT_MODULE_TYPE_MISMATCH";
965 case -1400: return "GEN_MODULE_ERROR";
966 case -1401: return "MODULE_NOT_INIT_SET_ERROR";
967 case -1402: return "MODULE_NOT_INIT_GET_ERROR";
968 case -1500: return "WheelRadiusTooSmall";
969 case -1501: return "TicksPerRevZero";
970 case -1502: return "DistanceBetweenWheelsTooSmall";
971 case -1503: return "GainsAreNotSet";
972 case -1504: return "WrongRemoteLimitSwitchSource";
973 case -1505: return "DoubleVoltageCompensatingWPI";
974 case -1506: return "CANdleAnimSlotOutOfBounds";
975 case -1600: return "IncompatibleMode";
976 case -1601: return "InvalidHandle";
977 case -1700: return "FeatureRequiresHigherFirm";
978 case -1702: return "ConfigFactoryDefaultRequiresHigherFirm";
979 case -1703: return "ConfigMotionSCurveRequiresHigherFirm";
980 case -1704: return "TalonFXFirmwarePreVBatDetect";
981 case -1705: return "CANdleAnimationsRequireHigherFirm";
982 case -1800: return "LibraryCouldNotBeLoaded";
983 case -1801: return "MissingRoutineInLibrary";
984 case -1802: return "ResourceNotAvailable";
985 case -1900: return "MusicFileNotFound";
986 case -1901: return "MusicFileWrongSize";
987 case -1902: return "MusicFileTooNew";
988 case -1903: return "MusicFileInvalid";
989 case -1904: return "InvalidOrchestraAction";
990 case -1905: return "MusicFileTooOld";
991 case -1906: return "MusicInterrupted";
992 case -1907: return "MusicNotSupported";
993 case -2000: return "kInvalidInterface";
994 case -2001: return "kInvalidGuid";
995 case -2002: return "kInvalidClass";
996 case -2003: return "kInvalidProtocol";
997 case -2004: return "kInvalidPath";
998 case -2005: return "kGeneralWinUsbError";
999 case -2006: return "kFailedSetup";
1000 case -2007: return "kListenFailed";
1001 case -2008: return "kSendFailed";
1002 case -2009: return "kReceiveFailed";
1003 case -2010: return "kInvalidRespFormat";
1004 case -2011: return "kWinUsbInitFailed";
1005 case -2012: return "kWinUsbQueryFailed";
1006 case -2013: return "kWinUsbGeneralError";
1007 case -2014: return "kAccessDenied";
1008 case -2015: return "kFirmwareInvalidResponse";
1009 case -10000: return "StatusCodeNotInitialized";
1010 case 10000: return "WarningNotInitialized";
1011 case 10001: return "HwTimestampOutOfSync";
1012 case 10002: return "FrequentConfigCalls";
1013 case -10001: return "InvalidNetwork";
1014 case -10002: return "MultiSignalNotSupported";
1015 case -10003: return "CouldNotCast";
1016 case -10004: return "NotFound";
1017 case -10005: return "NotSupported";
1018 case -10006: return "MissingContext";
1019 case -10007: return "ModelMismatch";
1020 case -10008: return "SerialMismatch";
1021 case -10009: return "NoFile";
1022 case -10010: return "LicenseDownloadFailed";
1023 case -10011: return "SelfTestIsEmpty";
1024 case -10012: return "SignalLookupFailed";
1025 case -10013: return "InvalidModeToGetSignal";
1026 case -10014: return "UnlicensedDevice";
1027 case -10015: return "InvalidSize";
1028 case -10016: return "InvalidLicenseResponse";
1029 case -10017: return "InvalidContext";
1030 case -10018: return "InternalError";
1031 case -10019: return "kDeviceResponseIncorrect";
1032 case -10020: return "kErrorPollingForDevices";
1033 case -10021: return "CouldNotRetrieveV6Firmware";
1034 case -10022: return "CouldNotDecodeDeviceFirmware";
1035 case -10023: return "InvalidIDToFollow";
1036 case -10024: return "UsingProFeatureOnUnlicensedDevice";
1037 case -10025: return "FirmwareTooNew";
1038 case -10026: return "CouldNotSerialize";
1039 case -10027: return "MechanismFaulted";
1040 case -10028: return "FirmwareVersNotCompatible";
1041 case -10029: return "DirectoryMissing";
1042 case -10030: return "ApiTooOld";
1043 case -10031: return "LoggerNotRunning";
1044 case -10032: return "TimeoutCannotBeZero";
1045 case -10033: return "CannotLicenseWhileEnabled";
1046 case -10034: return "InvalidFile";
1047 case -10035: return "HootLogTooOld";
1048 case -10036: return "HootLogTooNew";
1049 case -10037: return "UnlicensedHootLog";
1050 case -10038: return "CannotStepWhileUnpaused";
1051 case -10039: return "MultipleReplayNotSupported";
1052 case -10040: return "UserSignalLimitExceeded";
1053 case -10041: return "InvalidDeviceModel";
1054 case -10042: return "SignalNotSupportedOrMissing";
1055 case -10043: return "MissingSchema";
1056 default:
1057 /* because we return const char*, we cannot create
1058 * a string with the status error code */
1059 return "Could not find name for StatusCode";
1060 }
1061 }
1062 /**
1063 * Gets the description of this StatusCode
1064 *
1065 * \returns Description of this StatusCode
1066 */
1067 constexpr const char *GetDescription() const
1068 {
1069 switch (value) {
1070 case 0: return "No Error";
1071 case -100: return "Diagnostic Server is busy with another command.";
1072 case -101: return "InvalidDeviceSpec";
1073 case -102: return "Device is not present. Verify the device is connected and powered, and that the CAN bus is terminated.";
1074 case -103: return "Could not put the device into bootloader mode.";
1075 case -104: return "Could not confirm the device has entered the bootloader.";
1076 case -105: return "Could not erase flash.";
1077 case -106: return "Could not field upgrade the device.";
1078 case -107: return "Bootloader could not verify integrity of the flashed application.";
1079 case -108: return "Could not run the device firmware application.";
1080 case -109: return "Unable to set ID to this device. Confirm that this action is valid for this device and the ID is valid (0-62).";
1081 case -110: return "Could not verify that the changed ID took effect.";
1082 case -111: return "Device field upgrade was successful.";
1083 case -112: return "Device firmware application is too old.";
1084 case -113: return "Unable to set name to this device.";
1085 case -114: return "CompileSzIsWrong";
1086 case -115: return "Cannot set the ID of a gadgeteer device.";
1087 case -116: return "This diagnostic action is not supported.";
1088 case -117: return "Not Implemented, check latest installer.";
1089 case -118: return "NoDevicesOnBus";
1090 case -119: return "MoreThanOneFile";
1091 case -120: return "Specified device was not found. Verify the device is connected and powered, and that the CAN bus is terminated.";
1092 case -121: return "InvalidDeviceDescriptor";
1093 case -123: return "CouldNotSendCanFrame";
1094 case -124: return "NormalModeMsgNotPresent";
1095 case -125: return "This feature is not supported.";
1096 case -126: return "The diagnostic server is not field upgrading any devices.";
1097 case -127: return "CorruptedPOST";
1098 case -128: return "This device did not report any available configs. Verify firmware and diagnostics are up-to-date.";
1099 case -129: return "ConfigFailed";
1100 case -130: return "Unable to factory default this device.";
1101 case -131: return "CustomNameNotSupported";
1102 case -132: return "The configs read from the device do not match the configs that were written.";
1103 case -133: return "Could not apply the device configs.";
1104 case -134: return "InsufficientSz";
1105 case -135: return "This feature is not supported for this device model.";
1106 case -140: return "CouldNotReqDevInfo";
1107 case -141: return "This device does not support new controls.";
1108 case -142: return "DeviceIsNull";
1109 case -143: return "DeviceDidNotRespondToDiagReq";
1110 case -144: return "This feature requires Tuner X.";
1111 case -145: return "Command-line issue with caniv.";
1112 case -200: return "InvalidCrfBadHeader";
1113 case -201: return "InvalidCrfFileSzInvald";
1114 case -202: return "Specified CRF is for the wrong product.";
1115 case -203: return "InvalidCrfNoSects";
1116 case -204: return "InvalidCrfBadSectHeader";
1117 case -205: return "InvalidCrfBadSectSize";
1118 case -206: return "Specified CRF file could not be found.";
1119 case -300: return "CouldNotFindDynamicId";
1120 case -301: return "DidNotGetDhcp";
1121 case -302: return "DidNotGetFullDhcp";
1122 case -350: return "InvalidLicenseResp";
1123 case -351: return "InvalidCanivCache";
1124 case -500: return "CannotOpenSerialPort";
1125 case -501: return "CannotWriteSerialPort";
1126 case -502: return "CannotReadSerialPort";
1127 case -503: return "CannotSerialToDevice";
1128 case -504: return "NoSerialControlFrameResp";
1129 case -600: return "CannotOpenUdpPort";
1130 case -601: return "CannotWriteUdpPort";
1131 case -602: return "CannotReadUdpPort";
1132 case -603: return "CannotUdpToDevice";
1133 case -604: return "NoUdpControlFrameResp";
1134 case -605: return "TimeoutIso15Response";
1135 case -700: return "InvalidJson";
1136 case -800: return "The user application is shutting down.";
1137 case 1000: return "CAN message is stale, data is valid but old. Check the CAN bus wiring, CAN bus utilization, and power to the device.";
1138 case 1006: return "Buffer is full, cannot insert more data.";
1139 case 1010: return "PulseWidthSensorNotPresent";
1140 case 1100: return "General Warning Occurred.";
1141 case 1103: return "Firm Vers could not be retrieved. Use Phoenix Tuner X to check ID and firmware(CRF) version.";
1142 case 1104: return "This feature will be supported in a future update.";
1143 case 1105: return "The control mode is not valid for this function.";
1144 case 1106: return "This control mode is not supported yet. A future release will supported this soon.";
1145 case 1109: return "Motor Controller must have >= 3.2 firmware for motion profile control mode.";
1146 case 1110: return "Motor Controller must have >= 3.4 firmware for advanced PID0/PID1 features.";
1147 case 1200: return "SimDeviceNotFound";
1148 case 1201: return "SimPhysicsTypeNotSupported";
1149 case 1202: return "SimDeviceAlreadyExists";
1150 case -1001: return "Could not transmit CAN Frame.";
1151 case -1002: return "An invalid argument was passed into the function/VI, such as a null pointer.";
1152 case -1003: return "CAN frame not received/too-stale. Check the CAN bus wiring, CAN bus utilization, and power to the device.";
1153 case -1004: return "CAN Transmit timed out.";
1154 case -1005: return "ArbID is incorrect.";
1155 case -1006: return "CanOverflowed";
1156 case -1007: return "Sensor Not Present.";
1157 case -1008: return "Firmware Too Old. Use Phoenix Tuner X to field upgrade your CTRE CAN device firmware(CRF). Then restart your robot application to clear this error.";
1158 case -1009: return "Control Frame Period could not be changed. Most likely it is not being transmitted.";
1159 case -1010: return "BufferFailure";
1160 case -1011: return "Firmware is legacy non-FRC version. Use Phoenix Tuner X to field upgrade your CTRE CAN device firmware(CRF). Firmware greater than 20.0 required.";
1161 case -1100: return "General Error Occurred.";
1162 case -1200: return "No new response to update signal.";
1163 case -1201: return "NotAllPIDValuesUpdated";
1164 case -1300: return "GEN_PORT_ERROR";
1165 case -1301: return "PORT_MODULE_TYPE_MISMATCH";
1166 case -1400: return "GEN_MODULE_ERROR";
1167 case -1401: return "MODULE_NOT_INIT_SET_ERROR";
1168 case -1402: return "MODULE_NOT_INIT_GET_ERROR";
1169 case -1500: return "Wheel Radius is too small, cannot get distance traveled.";
1170 case -1501: return "Ticks per revolution is 0, cannot get heading.";
1171 case -1502: return "Distance between wheels is too small, cannot get heading.";
1172 case -1503: return "GainsAreNotSet";
1173 case -1504: return "Use RemoteLimitSwitchSource instead of LimitSwitchSource.";
1174 case -1505: return "Motor Controller Voltage Compensation should not be used with setVoltage(). This causes compensation to happen twice. Disable Voltage Compensation by calling enableVoltageCompensation(false) in order to use setVoltage().";
1175 case -1506: return "CANdleAnimSlotOutOfBounds";
1176 case -1600: return "IncompatibleMode";
1177 case -1601: return "Handle passed into function is incorrect.";
1178 case -1700: return "Features requires newer firmware version.";
1179 case -1702: return "Config factory default features require firmware >=3.10.";
1180 case -1703: return "Config Motion S Curve Strength features require firmware >=4.16.";
1181 case -1704: return "Talon FX(Falcon 500) Firmware Too Old. Use Phoenix Tuner to field upgrade your CTRE CAN device firmware(CRF) to >=20.3. Then restart your robot application to clear this error.";
1182 case -1705: return "CANdleAnimationsRequireHigherFirm";
1183 case -1800: return "LibraryCouldNotBeLoaded";
1184 case -1801: return "MissingRoutineInLibrary";
1185 case -1802: return "ResourceNotAvailable";
1186 case -1900: return "Could not find music file specified, try specifying an absolute path.";
1187 case -1901: return "Music file size is incorrect, could not parse correctly. Ensure you're using Tuner to generate file.";
1188 case -1902: return "Music file version is too new, update Phoenix to utilize this file.";
1189 case -1903: return "Music file is invalid. Ensure you're using Tuner to generate file.";
1190 case -1904: return "An invalid orchestra action occurred. Ensure a music file is loaded.";
1191 case -1905: return "This music file version is too old. Regenerate file using Tuner.";
1192 case -1906: return "Music interrupted due to one of the instruments being commanded a different control mode. Press Play to resume music.";
1193 case -1907: return "This device doesn't support MusicTone control mode.";
1194 case -2000: return "kInvalidInterface";
1195 case -2001: return "kInvalidGuid";
1196 case -2002: return "kInvalidClass";
1197 case -2003: return "kInvalidProtocol";
1198 case -2004: return "kInvalidPath";
1199 case -2005: return "kGeneralWinUsbError";
1200 case -2006: return "kFailedSetup";
1201 case -2007: return "kListenFailed";
1202 case -2008: return "kSendFailed";
1203 case -2009: return "kReceiveFailed";
1204 case -2010: return "kInvalidRespFormat";
1205 case -2011: return "kWinUsbInitFailed";
1206 case -2012: return "kWinUsbQueryFailed";
1207 case -2013: return "kWinUsbGeneralError";
1208 case -2014: return "kAccessDenied";
1209 case -2015: return "kFirmwareInvalidResponse";
1210 case -10000: return "This StatusCode has not been initialized. Make sure the StatusCode is getting assigned to the return of a method.";
1211 case 10000: return "WarningNotInitialized";
1212 case 10001: return "The timestamp reported by CANivore is at least 10ms older than the timestamp reported by the system, indicating it's fallen out of sync. This does not impact the data of this message, only the timing.";
1213 case 10002: return "Do not apply or refresh configs periodically, as configs are blocking.";
1214 case -10001: return "The given network/CAN bus is invalid. Verify that any status signals provided are on the same network and that the network is present.";
1215 case -10002: return "The CAN bus does not support multi-signal synchronization.";
1216 case -10003: return "Could not cast from base value to this particular signal's type";
1217 case -10004: return "Could not find this value when searching for it";
1218 case -10005: return "This is not supported";
1219 case -10006: return "Could not determine context from this device hash";
1220 case -10007: return "Model name in license file does not match model name of selected device.";
1221 case -10008: return "Serial Number in license file does not match model name of selected device.";
1222 case -10009: return "Could not find specified file.";
1223 case -10010: return "License did not successfully download to Device.";
1224 case -10011: return "Self Test report does not have any values, is the firmware up to date?";
1225 case -10012: return "Failed to lookup signal properties. This can happen if the fimware is too new and supports signals that older APIs do not support.";
1226 case -10013: return "The current mode of the device is invalid for getting this signal.";
1227 case -10014: return "Device is not licensed. Cannot get any data from it.";
1228 case -10015: return "Size is invalid.";
1229 case -10016: return "InvalidLicenseResponse";
1230 case -10017: return "InvalidContext";
1231 case -10018: return "InternalError";
1232 case -10019: return "kDeviceResponseIncorrect";
1233 case -10020: return "kErrorPollingForDevices";
1234 case -10021: return "Device firmware could not be retrieved. Check that the device is running v6 firmware, the device ID is correct, the specified CAN bus is correct, and the device is powered.";
1235 case -10022: return "Device firmware could not be decoded. Check that the device is running v6 firmware, the device ID is correct, the specified CAN bus is correct, and the device is powered.";
1236 case -10023: return "The values specified for master are in valid. Make sure the Device ID of master are correct.";
1237 case -10024: return "Using a Pro only feature on an unlicensed device. The device may not behave as expected if it continues to operate while unlicensed.";
1238 case -10025: return "Firmware Too New. Use Phoenix Tuner X to field upgrade your CTRE CAN device firmware(CRF) to a compatible version. Then restart your robot application to clear this error.";
1239 case -10026: return "The data frame could not be serialized for transmit.";
1240 case -10027: return "The mechanism is disabled due to a fault in one of the devices.";
1241 case -10028: return "Firmware version is not compatible with this version of Phoenix. Make sure your firmware and API major versions match.";
1242 case -10029: return "Could not find specified directory.";
1243 case -10030: return "This API version is too old for the firmware on the device. Either upgrade the API to a newer version or downgrade the device firmware to an older version for correct behavior.";
1244 case -10031: return "The signal logger is not running. Start the signal logger before writing any signals.";
1245 case -10032: return "Blocking operations, such as configs, cannot have a timeout of 0. Pass in a non-zero timeout (typically 0.050+ seconds) for normal operation.";
1246 case -10033: return "Device cannot be licensed while it is control enabled. Disable and neutral the device to apply the licenses.";
1247 case -10034: return "Could not open or read the given file.";
1248 case -10035: return "The given hoot log requires an older version of Phoenix API.";
1249 case -10036: return "The given hoot log requires a newer version of Phoenix API.";
1250 case -10037: return "Hoot log is not licensed. Cannot get any data from it.";
1251 case -10038: return "The simulation timing cannot be advanced by a time step while unpaused. Pause the simulator before advancing time.";
1252 case -10039: return "Hoot replay does not support replaying multiple files. Ensure that only one file is loaded at a time.";
1253 case -10040: return "The maximum number of loggable user signals has been exceeded. Additional user signals will not be logged.";
1254 case -10041: return "The provided model was not a valid device type.";
1255 case -10042: return "The requested signal is missing or not supported. Verify that the device firmware is up-to-date.";
1256 case -10043: return "The schema for the logged user signal is invalid or missing. Ensure that the schema is written before the user signal.";
1257 default:
1258 /* because we return const char*, we cannot create
1259 * a string with the status error code */
1260 return "Could not find description for StatusCode";
1261 }
1262 }
1263
1264#ifdef CTREXPORT
1265 CTREXPORT
1266#endif
1267 friend std::ostream &operator<<(std::ostream &os, StatusCode status);
1268 };
1269
1270}
1271}
1272
1273} // extern "C++"
1274
1275#else // This is straight-C, so just create a typedef enum to use
1276
1277/**
1278 * \brief Typedef enum of the StatusCode for use in C projects
1279 */
1280typedef enum _StatusCode_t
1281{
1282 /**
1283 * \brief No Error
1284 */
1285 OK = 0,
1286 /**
1287 * \brief Diagnostic Server is busy with another command.
1288 */
1289 TaskIsBusy = -100,
1290 /**
1291 * \brief InvalidDeviceSpec
1292 */
1293 InvalidDeviceSpec = -101,
1294 /**
1295 * \brief Device is not present. Verify the device is connected and powered, and
1296 * that the CAN bus is terminated.
1297 */
1298 EcuIsNotPresent = -102,
1299 /**
1300 * \brief Could not put the device into bootloader mode.
1301 */
1302 CouldNotEnterBl = -103,
1303 /**
1304 * \brief Could not confirm the device has entered the bootloader.
1305 */
1306 CouldNotConfirmBl = -104,
1307 /**
1308 * \brief Could not erase flash.
1309 */
1310 CouldNotErase = -105,
1311 /**
1312 * \brief Could not field upgrade the device.
1313 */
1314 CouldNotSendFlash = -106,
1315 /**
1316 * \brief Bootloader could not verify integrity of the flashed application.
1317 */
1318 CouldNotValidate = -107,
1319 /**
1320 * \brief Could not run the device firmware application.
1321 */
1322 CouldNotRunApp = -108,
1323 /**
1324 * \brief Unable to set ID to this device. Confirm that this action is valid for
1325 * this device and the ID is valid (0-62).
1326 */
1327 CouldNotReqSetId = -109,
1328 /**
1329 * \brief Could not verify that the changed ID took effect.
1330 */
1331 CouldNotConfirmId = -110,
1332 /**
1333 * \brief Device field upgrade was successful.
1334 */
1335 FlashWasGood = -111,
1336 /**
1337 * \brief Device firmware application is too old.
1338 */
1339 AppTooOld = -112,
1340 /**
1341 * \brief Unable to set name to this device.
1342 */
1343 CouldNotReqSetDesc = -113,
1344 /**
1345 * \brief CompileSzIsWrong
1346 */
1347 CompileSzIsWrong = -114,
1348 /**
1349 * \brief Cannot set the ID of a gadgeteer device.
1350 */
1351 GadgeteerDeviceNoSetId = -115,
1352 /**
1353 * \brief This diagnostic action is not supported.
1354 */
1355 InvalidTask = -116,
1356 /**
1357 * \brief Not Implemented, check latest installer.
1358 */
1359 NotImplemented = -117,
1360 /**
1361 * \brief NoDevicesOnBus
1362 */
1363 NoDevicesOnBus = -118,
1364 /**
1365 * \brief MoreThanOneFile
1366 */
1367 MoreThanOneFile = -119,
1368 /**
1369 * \brief Specified device was not found. Verify the device is connected and
1370 * powered, and that the CAN bus is terminated.
1371 */
1372 NodeIsInvalid = -120,
1373 /**
1374 * \brief InvalidDeviceDescriptor
1375 */
1376 InvalidDeviceDescriptor = -121,
1377 /**
1378 * \brief CouldNotSendCanFrame
1379 */
1380 CouldNotSendCanFrame = -123,
1381 /**
1382 * \brief NormalModeMsgNotPresent
1383 */
1384 NormalModeMsgNotPresent = -124,
1385 /**
1386 * \brief This feature is not supported.
1387 */
1388 FeatureNotSupported = -125,
1389 /**
1390 * \brief The diagnostic server is not field upgrading any devices.
1391 */
1392 NotUpdating = -126,
1393 /**
1394 * \brief CorruptedPOST
1395 */
1396 CorruptedPOST = -127,
1397 /**
1398 * \brief This device did not report any available configs. Verify firmware and
1399 * diagnostics are up-to-date.
1400 */
1401 NoConfigs = -128,
1402 /**
1403 * \brief ConfigFailed
1404 */
1405 ConfigFailed = -129,
1406 /**
1407 * \brief Unable to factory default this device.
1408 */
1409 CouldNotReqFactoryDefault = -130,
1410 /**
1411 * \brief CustomNameNotSupported
1412 */
1413 CustomNameNotSupported = -131,
1414 /**
1415 * \brief The configs read from the device do not match the configs that were
1416 * written.
1417 */
1418 ConfigReadWriteMismatch = -132,
1419 /**
1420 * \brief Could not apply the device configs.
1421 */
1422 CouldNotReqSetConfigs = -133,
1423 /**
1424 * \brief InsufficientSz
1425 */
1426 InsufficientSz = -134,
1427 /**
1428 * \brief This feature is not supported for this device model.
1429 */
1430 InvalidModel = -135,
1431 /**
1432 * \brief CouldNotReqDevInfo
1433 */
1434 CouldNotReqDevInfo = -140,
1435 /**
1436 * \brief This device does not support new controls.
1437 */
1438 NoControls = -141,
1439 /**
1440 * \brief DeviceIsNull
1441 */
1442 DeviceIsNull = -142,
1443 /**
1444 * \brief DeviceDidNotRespondToDiagReq
1445 */
1446 DeviceDidNotRespondToDiagReq = -143,
1447 /**
1448 * \brief This feature requires Tuner X.
1449 */
1450 OnlySupportedInTunerX = -144,
1451 /**
1452 * \brief Command-line issue with caniv.
1453 */
1454 CanivCliError = -145,
1455 /**
1456 * \brief InvalidCrfBadHeader
1457 */
1458 InvalidCrfBadHeader = -200,
1459 /**
1460 * \brief InvalidCrfFileSzInvald
1461 */
1462 InvalidCrfFileSzInvald = -201,
1463 /**
1464 * \brief Specified CRF is for the wrong product.
1465 */
1466 InvalidCrfWrongProduct = -202,
1467 /**
1468 * \brief InvalidCrfNoSects
1469 */
1470 InvalidCrfNoSects = -203,
1471 /**
1472 * \brief InvalidCrfBadSectHeader
1473 */
1474 InvalidCrfBadSectHeader = -204,
1475 /**
1476 * \brief InvalidCrfBadSectSize
1477 */
1478 InvalidCrfBadSectSize = -205,
1479 /**
1480 * \brief Specified CRF file could not be found.
1481 */
1482 NoCrfFile = -206,
1483 /**
1484 * \brief CouldNotFindDynamicId
1485 */
1486 CouldNotFindDynamicId = -300,
1487 /**
1488 * \brief DidNotGetDhcp
1489 */
1490 DidNotGetDhcp = -301,
1491 /**
1492 * \brief DidNotGetFullDhcp
1493 */
1494 DidNotGetFullDhcp = -302,
1495 /**
1496 * \brief InvalidLicenseResp
1497 */
1498 InvalidLicenseResp = -350,
1499 /**
1500 * \brief InvalidCanivCache
1501 */
1502 InvalidCanivCache = -351,
1503 /**
1504 * \brief CannotOpenSerialPort
1505 */
1506 CannotOpenSerialPort = -500,
1507 /**
1508 * \brief CannotWriteSerialPort
1509 */
1510 CannotWriteSerialPort = -501,
1511 /**
1512 * \brief CannotReadSerialPort
1513 */
1514 CannotReadSerialPort = -502,
1515 /**
1516 * \brief CannotSerialToDevice
1517 */
1518 CannotSerialToDevice = -503,
1519 /**
1520 * \brief NoSerialControlFrameResp
1521 */
1522 NoSerialControlFrameResp = -504,
1523 /**
1524 * \brief CannotOpenUdpPort
1525 */
1526 CannotOpenUdpPort = -600,
1527 /**
1528 * \brief CannotWriteUdpPort
1529 */
1530 CannotWriteUdpPort = -601,
1531 /**
1532 * \brief CannotReadUdpPort
1533 */
1534 CannotReadUdpPort = -602,
1535 /**
1536 * \brief CannotUdpToDevice
1537 */
1538 CannotUdpToDevice = -603,
1539 /**
1540 * \brief NoUdpControlFrameResp
1541 */
1542 NoUdpControlFrameResp = -604,
1543 /**
1544 * \brief TimeoutIso15Response
1545 */
1546 TimeoutIso15Response = -605,
1547 /**
1548 * \brief InvalidJson
1549 */
1550 InvalidJson = -700,
1551 /**
1552 * \brief The user application is shutting down.
1553 */
1554 AppIsTerminating = -800,
1555 /**
1556 * \brief CAN message is stale, data is valid but old. Check the CAN bus wiring,
1557 * CAN bus utilization, and power to the device.
1558 */
1559 CanMessageStale = 1000,
1560 /**
1561 * \brief Buffer is full, cannot insert more data.
1562 */
1563 BufferFull = 1006,
1564 /**
1565 * \brief PulseWidthSensorNotPresent
1566 */
1567 PulseWidthSensorNotPresent = 1010,
1568 /**
1569 * \brief General Warning Occurred.
1570 */
1571 GeneralWarning = 1100,
1572 /**
1573 * \brief Firm Vers could not be retrieved. Use Phoenix Tuner X to check ID and
1574 * firmware(CRF) version.
1575 */
1576 FirmVersionCouldNotBeRetrieved = 1103,
1577 /**
1578 * \brief This feature will be supported in a future update.
1579 */
1580 FeaturesNotAvailableYet = 1104,
1581 /**
1582 * \brief The control mode is not valid for this function.
1583 */
1584 ControlModeNotValid = 1105,
1585 /**
1586 * \brief This control mode is not supported yet. A future release will
1587 * supported this soon.
1588 */
1589 ControlModeNotSupportedYet = 1106,
1590 /**
1591 * \brief Motor Controller must have &gt;= 3.2 firmware for motion profile
1592 * control mode.
1593 */
1594 MotProfFirmThreshold = 1109,
1595 /**
1596 * \brief Motor Controller must have &gt;= 3.4 firmware for advanced PID0/PID1
1597 * features.
1598 */
1599 MotProfFirmThreshold2 = 1110,
1600 /**
1601 * \brief SimDeviceNotFound
1602 */
1603 SimDeviceNotFound = 1200,
1604 /**
1605 * \brief SimPhysicsTypeNotSupported
1606 */
1607 SimPhysicsTypeNotSupported = 1201,
1608 /**
1609 * \brief SimDeviceAlreadyExists
1610 */
1611 SimDeviceAlreadyExists = 1202,
1612 /**
1613 * \brief Could not transmit CAN Frame.
1614 */
1615 TxFailed = -1001,
1616 /**
1617 * \brief An invalid argument was passed into the function/VI, such as a null
1618 * pointer.
1619 */
1620 InvalidParamValue = -1002,
1621 /**
1622 * \brief CAN frame not received/too-stale. Check the CAN bus wiring, CAN bus
1623 * utilization, and power to the device.
1624 */
1625 RxTimeout = -1003,
1626 /**
1627 * \brief CAN Transmit timed out.
1628 */
1629 TxTimeout = -1004,
1630 /**
1631 * \brief ArbID is incorrect.
1632 */
1633 UnexpectedArbId = -1005,
1634 /**
1635 * \brief CanOverflowed
1636 */
1637 CanOverflowed = -1006,
1638 /**
1639 * \brief Sensor Not Present.
1640 */
1641 SensorNotPresent = -1007,
1642 /**
1643 * \brief Firmware Too Old. Use Phoenix Tuner X to field upgrade your CTRE CAN
1644 * device firmware(CRF). Then restart your robot application to clear
1645 * this error.
1646 */
1647 FirmwareTooOld = -1008,
1648 /**
1649 * \brief Control Frame Period could not be changed. Most likely it is not
1650 * being transmitted.
1651 */
1652 CouldNotChangePeriod = -1009,
1653 /**
1654 * \brief BufferFailure
1655 */
1656 BufferFailure = -1010,
1657 /**
1658 * \brief Firmware is legacy non-FRC version. Use Phoenix Tuner X to field
1659 * upgrade your CTRE CAN device firmware(CRF). Firmware greater than
1660 * 20.0 required.
1661 */
1662 FirmwareNonFRC = -1011,
1663 /**
1664 * \brief General Error Occurred.
1665 */
1666 GeneralError = -1100,
1667 /**
1668 * \brief No new response to update signal.
1669 */
1670 SigNotUpdated = -1200,
1671 /**
1672 * \brief NotAllPIDValuesUpdated
1673 */
1674 NotAllPIDValuesUpdated = -1201,
1675 /**
1676 * \brief GEN_PORT_ERROR
1677 */
1678 GEN_PORT_ERROR = -1300,
1679 /**
1680 * \brief PORT_MODULE_TYPE_MISMATCH
1681 */
1682 PORT_MODULE_TYPE_MISMATCH = -1301,
1683 /**
1684 * \brief GEN_MODULE_ERROR
1685 */
1686 GEN_MODULE_ERROR = -1400,
1687 /**
1688 * \brief MODULE_NOT_INIT_SET_ERROR
1689 */
1690 MODULE_NOT_INIT_SET_ERROR = -1401,
1691 /**
1692 * \brief MODULE_NOT_INIT_GET_ERROR
1693 */
1694 MODULE_NOT_INIT_GET_ERROR = -1402,
1695 /**
1696 * \brief Wheel Radius is too small, cannot get distance traveled.
1697 */
1698 WheelRadiusTooSmall = -1500,
1699 /**
1700 * \brief Ticks per revolution is 0, cannot get heading.
1701 */
1702 TicksPerRevZero = -1501,
1703 /**
1704 * \brief Distance between wheels is too small, cannot get heading.
1705 */
1706 DistanceBetweenWheelsTooSmall = -1502,
1707 /**
1708 * \brief GainsAreNotSet
1709 */
1710 GainsAreNotSet = -1503,
1711 /**
1712 * \brief Use RemoteLimitSwitchSource instead of LimitSwitchSource.
1713 */
1714 WrongRemoteLimitSwitchSource = -1504,
1715 /**
1716 * \brief Motor Controller Voltage Compensation should not be used with
1717 * setVoltage(). This causes compensation to happen twice. Disable
1718 * Voltage Compensation by calling enableVoltageCompensation(false) in
1719 * order to use setVoltage().
1720 */
1721 DoubleVoltageCompensatingWPI = -1505,
1722 /**
1723 * \brief CANdleAnimSlotOutOfBounds
1724 */
1725 CANdleAnimSlotOutOfBounds = -1506,
1726 /**
1727 * \brief IncompatibleMode
1728 */
1729 IncompatibleMode = -1600,
1730 /**
1731 * \brief Handle passed into function is incorrect.
1732 */
1733 InvalidHandle = -1601,
1734 /**
1735 * \brief Features requires newer firmware version.
1736 */
1737 FeatureRequiresHigherFirm = -1700,
1738 /**
1739 * \brief Config factory default features require firmware &gt;=3.10.
1740 */
1741 ConfigFactoryDefaultRequiresHigherFirm = -1702,
1742 /**
1743 * \brief Config Motion S Curve Strength features require firmware &gt;=4.16.
1744 */
1745 ConfigMotionSCurveRequiresHigherFirm = -1703,
1746 /**
1747 * \brief Talon FX(Falcon 500) Firmware Too Old. Use Phoenix Tuner to field
1748 * upgrade your CTRE CAN device firmware(CRF) to &gt;=20.3. Then restart
1749 * your robot application to clear this error.
1750 */
1751 TalonFXFirmwarePreVBatDetect = -1704,
1752 /**
1753 * \brief CANdleAnimationsRequireHigherFirm
1754 */
1755 CANdleAnimationsRequireHigherFirm = -1705,
1756 /**
1757 * \brief LibraryCouldNotBeLoaded
1758 */
1759 LibraryCouldNotBeLoaded = -1800,
1760 /**
1761 * \brief MissingRoutineInLibrary
1762 */
1763 MissingRoutineInLibrary = -1801,
1764 /**
1765 * \brief ResourceNotAvailable
1766 */
1767 ResourceNotAvailable = -1802,
1768 /**
1769 * \brief Could not find music file specified, try specifying an absolute path.
1770 */
1771 MusicFileNotFound = -1900,
1772 /**
1773 * \brief Music file size is incorrect, could not parse correctly. Ensure you're
1774 * using Tuner to generate file.
1775 */
1776 MusicFileWrongSize = -1901,
1777 /**
1778 * \brief Music file version is too new, update Phoenix to utilize this file.
1779 */
1780 MusicFileTooNew = -1902,
1781 /**
1782 * \brief Music file is invalid. Ensure you're using Tuner to generate file.
1783 */
1784 MusicFileInvalid = -1903,
1785 /**
1786 * \brief An invalid orchestra action occurred. Ensure a music file is loaded.
1787 */
1788 InvalidOrchestraAction = -1904,
1789 /**
1790 * \brief This music file version is too old. Regenerate file using Tuner.
1791 */
1792 MusicFileTooOld = -1905,
1793 /**
1794 * \brief Music interrupted due to one of the instruments being commanded a
1795 * different control mode. Press Play to resume music.
1796 */
1797 MusicInterrupted = -1906,
1798 /**
1799 * \brief This device doesn't support MusicTone control mode.
1800 */
1801 MusicNotSupported = -1907,
1802 /**
1803 * \brief kInvalidInterface
1804 */
1805 kInvalidInterface = -2000,
1806 /**
1807 * \brief kInvalidGuid
1808 */
1809 kInvalidGuid = -2001,
1810 /**
1811 * \brief kInvalidClass
1812 */
1813 kInvalidClass = -2002,
1814 /**
1815 * \brief kInvalidProtocol
1816 */
1817 kInvalidProtocol = -2003,
1818 /**
1819 * \brief kInvalidPath
1820 */
1821 kInvalidPath = -2004,
1822 /**
1823 * \brief kGeneralWinUsbError
1824 */
1825 kGeneralWinUsbError = -2005,
1826 /**
1827 * \brief kFailedSetup
1828 */
1829 kFailedSetup = -2006,
1830 /**
1831 * \brief kListenFailed
1832 */
1833 kListenFailed = -2007,
1834 /**
1835 * \brief kSendFailed
1836 */
1837 kSendFailed = -2008,
1838 /**
1839 * \brief kReceiveFailed
1840 */
1841 kReceiveFailed = -2009,
1842 /**
1843 * \brief kInvalidRespFormat
1844 */
1845 kInvalidRespFormat = -2010,
1846 /**
1847 * \brief kWinUsbInitFailed
1848 */
1849 kWinUsbInitFailed = -2011,
1850 /**
1851 * \brief kWinUsbQueryFailed
1852 */
1853 kWinUsbQueryFailed = -2012,
1854 /**
1855 * \brief kWinUsbGeneralError
1856 */
1857 kWinUsbGeneralError = -2013,
1858 /**
1859 * \brief kAccessDenied
1860 */
1861 kAccessDenied = -2014,
1862 /**
1863 * \brief kFirmwareInvalidResponse
1864 */
1865 kFirmwareInvalidResponse = -2015,
1866 /**
1867 * \brief This StatusCode has not been initialized. Make sure the StatusCode is
1868 * getting assigned to the return of a method.
1869 */
1870 StatusCodeNotInitialized = -10000,
1871 /**
1872 * \brief WarningNotInitialized
1873 */
1874 WarningNotInitialized = 10000,
1875 /**
1876 * \brief The timestamp reported by CANivore is at least 10ms older than the
1877 * timestamp reported by the system, indicating it's fallen out of sync.
1878 * This does not impact the data of this message, only the timing.
1879 */
1880 HwTimestampOutOfSync = 10001,
1881 /**
1882 * \brief Do not apply or refresh configs periodically, as configs are blocking.
1883 */
1884 FrequentConfigCalls = 10002,
1885 /**
1886 * \brief The given network/CAN bus is invalid. Verify that any status signals
1887 * provided are on the same network and that the network is present.
1888 */
1889 InvalidNetwork = -10001,
1890 /**
1891 * \brief The CAN bus does not support multi-signal synchronization.
1892 */
1893 MultiSignalNotSupported = -10002,
1894 /**
1895 * \brief Could not cast from base value to this particular signal's type
1896 */
1897 CouldNotCast = -10003,
1898 /**
1899 * \brief Could not find this value when searching for it
1900 */
1901 NotFound = -10004,
1902 /**
1903 * \brief This is not supported
1904 */
1905 NotSupported = -10005,
1906 /**
1907 * \brief Could not determine context from this device hash
1908 */
1909 MissingContext = -10006,
1910 /**
1911 * \brief Model name in license file does not match model name of selected
1912 * device.
1913 */
1914 ModelMismatch = -10007,
1915 /**
1916 * \brief Serial Number in license file does not match model name of selected
1917 * device.
1918 */
1919 SerialMismatch = -10008,
1920 /**
1921 * \brief Could not find specified file.
1922 */
1923 NoFile = -10009,
1924 /**
1925 * \brief License did not successfully download to Device.
1926 */
1927 LicenseDownloadFailed = -10010,
1928 /**
1929 * \brief Self Test report does not have any values, is the firmware up to date?
1930 */
1931 SelfTestIsEmpty = -10011,
1932 /**
1933 * \brief Failed to lookup signal properties. This can happen if the fimware is
1934 * too new and supports signals that older APIs do not support.
1935 */
1936 SignalLookupFailed = -10012,
1937 /**
1938 * \brief The current mode of the device is invalid for getting this signal.
1939 */
1940 InvalidModeToGetSignal = -10013,
1941 /**
1942 * \brief Device is not licensed. Cannot get any data from it.
1943 */
1944 UnlicensedDevice = -10014,
1945 /**
1946 * \brief Size is invalid.
1947 */
1948 InvalidSize = -10015,
1949 /**
1950 * \brief InvalidLicenseResponse
1951 */
1952 InvalidLicenseResponse = -10016,
1953 /**
1954 * \brief InvalidContext
1955 */
1956 InvalidContext = -10017,
1957 /**
1958 * \brief InternalError
1959 */
1960 InternalError = -10018,
1961 /**
1962 * \brief kDeviceResponseIncorrect
1963 */
1964 kDeviceResponseIncorrect = -10019,
1965 /**
1966 * \brief kErrorPollingForDevices
1967 */
1968 kErrorPollingForDevices = -10020,
1969 /**
1970 * \brief Device firmware could not be retrieved. Check that the device is
1971 * running v6 firmware, the device ID is correct, the specified CAN bus
1972 * is correct, and the device is powered.
1973 */
1974 CouldNotRetrieveV6Firmware = -10021,
1975 /**
1976 * \brief Device firmware could not be decoded. Check that the device is running
1977 * v6 firmware, the device ID is correct, the specified CAN bus is
1978 * correct, and the device is powered.
1979 */
1980 CouldNotDecodeDeviceFirmware = -10022,
1981 /**
1982 * \brief The values specified for master are in valid. Make sure the Device ID
1983 * of master are correct.
1984 */
1985 InvalidIDToFollow = -10023,
1986 /**
1987 * \brief Using a Pro only feature on an unlicensed device. The device may not
1988 * behave as expected if it continues to operate while unlicensed.
1989 */
1990 UsingProFeatureOnUnlicensedDevice = -10024,
1991 /**
1992 * \brief Firmware Too New. Use Phoenix Tuner X to field upgrade your CTRE CAN
1993 * device firmware(CRF) to a compatible version. Then restart your robot
1994 * application to clear this error.
1995 */
1996 FirmwareTooNew = -10025,
1997 /**
1998 * \brief The data frame could not be serialized for transmit.
1999 */
2000 CouldNotSerialize = -10026,
2001 /**
2002 * \brief The mechanism is disabled due to a fault in one of the devices.
2003 */
2004 MechanismFaulted = -10027,
2005 /**
2006 * \brief Firmware version is not compatible with this version of Phoenix. Make
2007 * sure your firmware and API major versions match.
2008 */
2009 FirmwareVersNotCompatible = -10028,
2010 /**
2011 * \brief Could not find specified directory.
2012 */
2013 DirectoryMissing = -10029,
2014 /**
2015 * \brief This API version is too old for the firmware on the device. Either
2016 * upgrade the API to a newer version or downgrade the device firmware to
2017 * an older version for correct behavior.
2018 */
2019 ApiTooOld = -10030,
2020 /**
2021 * \brief The signal logger is not running. Start the signal logger before
2022 * writing any signals.
2023 */
2024 LoggerNotRunning = -10031,
2025 /**
2026 * \brief Blocking operations, such as configs, cannot have a timeout of 0. Pass
2027 * in a non-zero timeout (typically 0.050+ seconds) for normal operation.
2028 */
2029 TimeoutCannotBeZero = -10032,
2030 /**
2031 * \brief Device cannot be licensed while it is control enabled. Disable and
2032 * neutral the device to apply the licenses.
2033 */
2034 CannotLicenseWhileEnabled = -10033,
2035 /**
2036 * \brief Could not open or read the given file.
2037 */
2038 InvalidFile = -10034,
2039 /**
2040 * \brief The given hoot log requires an older version of Phoenix API.
2041 */
2042 HootLogTooOld = -10035,
2043 /**
2044 * \brief The given hoot log requires a newer version of Phoenix API.
2045 */
2046 HootLogTooNew = -10036,
2047 /**
2048 * \brief Hoot log is not licensed. Cannot get any data from it.
2049 */
2050 UnlicensedHootLog = -10037,
2051 /**
2052 * \brief The simulation timing cannot be advanced by a time step while
2053 * unpaused. Pause the simulator before advancing time.
2054 */
2055 CannotStepWhileUnpaused = -10038,
2056 /**
2057 * \brief Hoot replay does not support replaying multiple files. Ensure that
2058 * only one file is loaded at a time.
2059 */
2060 MultipleReplayNotSupported = -10039,
2061 /**
2062 * \brief The maximum number of loggable user signals has been exceeded.
2063 * Additional user signals will not be logged.
2064 */
2065 UserSignalLimitExceeded = -10040,
2066 /**
2067 * \brief The provided model was not a valid device type.
2068 */
2069 InvalidDeviceModel = -10041,
2070 /**
2071 * \brief The requested signal is missing or not supported. Verify that the
2072 * device firmware is up-to-date.
2073 */
2074 SignalNotSupportedOrMissing = -10042,
2075 /**
2076 * \brief The schema for the logged user signal is invalid or missing. Ensure
2077 * that the schema is written before the user signal.
2078 */
2079 MissingSchema = -10043,
2080} StatusCode_t;
2081
2082/**
2083 * \brief Get the name of the StatusCode passed
2084 *
2085 * \param value StatusCode to get name of
2086 * \returns const char* Name of StatusCode
2087 */
2088const char *GetStatusCodeName(StatusCode_t value);
2089/**
2090 * \brief Get the description of the StatusCode passed
2091 *
2092 * \param value StatusCode to get description of
2093 * \returns const char* Description of StatusCode
2094 */
2095const char *GetStatusCodeDescription(StatusCode_t value);
2096
2097#endif
Status codes reported by APIs, including OK, warnings, and errors.
Definition StatusCodes.h:28
static constexpr int CANdleAnimationsRequireHigherFirm
CANdleAnimationsRequireHigherFirm.
Definition StatusCodes.h:505
static constexpr int InvalidContext
InvalidContext.
Definition StatusCodes.h:706
static constexpr int PulseWidthSensorNotPresent
PulseWidthSensorNotPresent.
Definition StatusCodes.h:317
static constexpr int kAccessDenied
kAccessDenied
Definition StatusCodes.h:611
static constexpr int FirmVersionCouldNotBeRetrieved
Firm Vers could not be retrieved.
Definition StatusCodes.h:326
static constexpr int NoFile
Could not find specified file.
Definition StatusCodes.h:673
static constexpr int FeatureRequiresHigherFirm
Features requires newer firmware version.
Definition StatusCodes.h:487
static constexpr int FirmwareNonFRC
Firmware is legacy non-FRC version.
Definition StatusCodes.h:412
friend std::ostream & operator<<(std::ostream &os, StatusCode status)
static constexpr int MusicFileWrongSize
Music file size is incorrect, could not parse correctly.
Definition StatusCodes.h:526
static constexpr int kGeneralWinUsbError
kGeneralWinUsbError
Definition StatusCodes.h:575
static constexpr int kWinUsbGeneralError
kWinUsbGeneralError
Definition StatusCodes.h:607
static constexpr int PORT_MODULE_TYPE_MISMATCH
PORT_MODULE_TYPE_MISMATCH.
Definition StatusCodes.h:432
static constexpr int SensorNotPresent
Sensor Not Present.
Definition StatusCodes.h:391
static constexpr int kFirmwareInvalidResponse
kFirmwareInvalidResponse
Definition StatusCodes.h:615
static constexpr int NotUpdating
The diagnostic server is not field upgrading any devices.
Definition StatusCodes.h:142
static constexpr int InvalidIDToFollow
The values specified for master are in valid.
Definition StatusCodes.h:735
static constexpr int CannotStepWhileUnpaused
The simulation timing cannot be advanced by a time step while unpaused.
Definition StatusCodes.h:805
static constexpr int InternalError
InternalError.
Definition StatusCodes.h:710
static constexpr int CouldNotChangePeriod
Control Frame Period could not be changed.
Definition StatusCodes.h:402
static constexpr int IncompatibleMode
IncompatibleMode.
Definition StatusCodes.h:479
static constexpr int ControlModeNotSupportedYet
This control mode is not supported yet.
Definition StatusCodes.h:339
static constexpr int NormalModeMsgNotPresent
NormalModeMsgNotPresent.
Definition StatusCodes.h:134
static constexpr int CouldNotReqDevInfo
CouldNotReqDevInfo.
Definition StatusCodes.h:184
static constexpr int SimPhysicsTypeNotSupported
SimPhysicsTypeNotSupported.
Definition StatusCodes.h:357
static constexpr int HootLogTooNew
The given hoot log requires a newer version of Phoenix API.
Definition StatusCodes.h:796
constexpr const char * GetDescription() const
Gets the description of this StatusCode.
Definition StatusCodes.h:1067
static constexpr int OK
No Error.
Definition StatusCodes.h:35
static constexpr int StatusCodeNotInitialized
This StatusCode has not been initialized.
Definition StatusCodes.h:620
static constexpr int AppIsTerminating
The user application is shutting down.
Definition StatusCodes.h:304
static constexpr int DoubleVoltageCompensatingWPI
Motor Controller Voltage Compensation should not be used with setVoltage().
Definition StatusCodes.h:471
static constexpr int GEN_MODULE_ERROR
GEN_MODULE_ERROR.
Definition StatusCodes.h:436
static constexpr int NotImplemented
Not Implemented, check latest installer.
Definition StatusCodes.h:109
static constexpr int SignalLookupFailed
Failed to lookup signal properties.
Definition StatusCodes.h:686
static constexpr int UnlicensedDevice
Device is not licensed.
Definition StatusCodes.h:694
static constexpr int kInvalidGuid
kInvalidGuid
Definition StatusCodes.h:559
static constexpr int CouldNotCast
Could not cast from base value to this particular signal's type.
Definition StatusCodes.h:647
constexpr friend auto operator<=>(StatusCode, StatusCode)=default
static constexpr int SimDeviceNotFound
SimDeviceNotFound.
Definition StatusCodes.h:353
static constexpr int CouldNotValidate
Bootloader could not verify integrity of the flashed application.
Definition StatusCodes.h:68
static constexpr int InvalidCrfNoSects
InvalidCrfNoSects.
Definition StatusCodes.h:220
static constexpr int CouldNotReqSetDesc
Unable to set name to this device.
Definition StatusCodes.h:93
static constexpr int CannotUdpToDevice
CannotUdpToDevice.
Definition StatusCodes.h:288
static constexpr int MusicFileTooOld
This music file version is too old.
Definition StatusCodes.h:542
static constexpr int InvalidHandle
Handle passed into function is incorrect.
Definition StatusCodes.h:483
static constexpr int CannotOpenSerialPort
CannotOpenSerialPort.
Definition StatusCodes.h:256
static constexpr int kInvalidInterface
kInvalidInterface
Definition StatusCodes.h:555
static constexpr int ConfigReadWriteMismatch
The configs read from the device do not match the configs that were written.
Definition StatusCodes.h:168
static constexpr int NotAllPIDValuesUpdated
NotAllPIDValuesUpdated.
Definition StatusCodes.h:424
static constexpr int TaskIsBusy
Diagnostic Server is busy with another command.
Definition StatusCodes.h:39
constexpr const char * GetName() const
Gets the name of this StatusCode.
Definition StatusCodes.h:866
static constexpr int kInvalidProtocol
kInvalidProtocol
Definition StatusCodes.h:567
static constexpr int CouldNotSendFlash
Could not field upgrade the device.
Definition StatusCodes.h:64
static constexpr int CannotOpenUdpPort
CannotOpenUdpPort.
Definition StatusCodes.h:276
static constexpr int CanivCliError
Command-line issue with caniv.
Definition StatusCodes.h:204
static constexpr int InsufficientSz
InsufficientSz.
Definition StatusCodes.h:176
static constexpr int AppTooOld
Device firmware application is too old.
Definition StatusCodes.h:89
static constexpr int MultipleReplayNotSupported
Hoot replay does not support replaying multiple files.
Definition StatusCodes.h:810
static constexpr int WarningNotInitialized
WarningNotInitialized.
Definition StatusCodes.h:624
static constexpr int MODULE_NOT_INIT_SET_ERROR
MODULE_NOT_INIT_SET_ERROR.
Definition StatusCodes.h:440
static constexpr int InvalidJson
InvalidJson.
Definition StatusCodes.h:300
static constexpr int BufferFull
Buffer is full, cannot insert more data.
Definition StatusCodes.h:313
static constexpr int MusicFileInvalid
Music file is invalid.
Definition StatusCodes.h:534
static constexpr int DidNotGetFullDhcp
DidNotGetFullDhcp.
Definition StatusCodes.h:244
static constexpr int CanOverflowed
CanOverflowed.
Definition StatusCodes.h:387
static constexpr int MotProfFirmThreshold2
Motor Controller must have >= 3.4 firmware for advanced PID0/PID1 features.
Definition StatusCodes.h:349
static constexpr int FlashWasGood
Device field upgrade was successful.
Definition StatusCodes.h:85
static constexpr int CouldNotRunApp
Could not run the device firmware application.
Definition StatusCodes.h:72
static constexpr int CouldNotConfirmBl
Could not confirm the device has entered the bootloader.
Definition StatusCodes.h:56
static constexpr int GeneralError
General Error Occurred.
Definition StatusCodes.h:416
static constexpr int GeneralWarning
General Warning Occurred.
Definition StatusCodes.h:321
static constexpr int HootLogTooOld
The given hoot log requires an older version of Phoenix API.
Definition StatusCodes.h:792
static constexpr int CouldNotErase
Could not erase flash.
Definition StatusCodes.h:60
static constexpr int HwTimestampOutOfSync
The timestamp reported by CANivore is at least 10ms older than the timestamp reported by the system,...
Definition StatusCodes.h:630
static constexpr int CouldNotEnterBl
Could not put the device into bootloader mode.
Definition StatusCodes.h:52
static constexpr int ModelMismatch
Model name in license file does not match model name of selected device.
Definition StatusCodes.h:664
static constexpr int NoConfigs
This device did not report any available configs.
Definition StatusCodes.h:151
constexpr bool IsWarning() const
Definition StatusCodes.h:855
static constexpr int SerialMismatch
Serial Number in license file does not match model name of selected device.
Definition StatusCodes.h:669
static constexpr int InvalidLicenseResp
InvalidLicenseResp.
Definition StatusCodes.h:248
static constexpr int ConfigFailed
ConfigFailed.
Definition StatusCodes.h:155
static constexpr int InvalidCrfBadHeader
InvalidCrfBadHeader.
Definition StatusCodes.h:208
static constexpr int CouldNotFindDynamicId
CouldNotFindDynamicId.
Definition StatusCodes.h:236
static constexpr int GainsAreNotSet
GainsAreNotSet.
Definition StatusCodes.h:460
static constexpr int BufferFailure
BufferFailure.
Definition StatusCodes.h:406
static constexpr int OnlySupportedInTunerX
This feature requires Tuner X.
Definition StatusCodes.h:200
static constexpr int InvalidModel
This feature is not supported for this device model.
Definition StatusCodes.h:180
static constexpr int CannotWriteSerialPort
CannotWriteSerialPort.
Definition StatusCodes.h:260
static constexpr int InvalidParamValue
An invalid argument was passed into the function/VI, such as a null pointer.
Definition StatusCodes.h:370
constexpr StatusCode()
Definition StatusCodes.h:832
static constexpr int DirectoryMissing
Could not find specified directory.
Definition StatusCodes.h:763
static constexpr int CanMessageStale
CAN message is stale, data is valid but old.
Definition StatusCodes.h:309
static constexpr int InvalidCrfBadSectHeader
InvalidCrfBadSectHeader.
Definition StatusCodes.h:224
static constexpr int kSendFailed
kSendFailed
Definition StatusCodes.h:587
static constexpr int NoSerialControlFrameResp
NoSerialControlFrameResp.
Definition StatusCodes.h:272
static constexpr int kInvalidRespFormat
kInvalidRespFormat
Definition StatusCodes.h:595
static constexpr int TalonFXFirmwarePreVBatDetect
Talon FX(Falcon 500) Firmware Too Old.
Definition StatusCodes.h:501
static constexpr int ControlModeNotValid
The control mode is not valid for this function.
Definition StatusCodes.h:334
static constexpr int InvalidOrchestraAction
An invalid orchestra action occurred.
Definition StatusCodes.h:538
static constexpr int InvalidCrfFileSzInvald
InvalidCrfFileSzInvald.
Definition StatusCodes.h:212
static constexpr int InvalidModeToGetSignal
The current mode of the device is invalid for getting this signal.
Definition StatusCodes.h:690
static constexpr int InvalidCrfWrongProduct
Specified CRF is for the wrong product.
Definition StatusCodes.h:216
static constexpr int kWinUsbQueryFailed
kWinUsbQueryFailed
Definition StatusCodes.h:603
static constexpr int SelfTestIsEmpty
Self Test report does not have any values, is the firmware up to date?
Definition StatusCodes.h:681
static constexpr int NoUdpControlFrameResp
NoUdpControlFrameResp.
Definition StatusCodes.h:292
static constexpr int DeviceDidNotRespondToDiagReq
DeviceDidNotRespondToDiagReq.
Definition StatusCodes.h:196
static constexpr int EcuIsNotPresent
Device is not present.
Definition StatusCodes.h:48
static constexpr int InvalidCrfBadSectSize
InvalidCrfBadSectSize.
Definition StatusCodes.h:228
static constexpr int CannotReadUdpPort
CannotReadUdpPort.
Definition StatusCodes.h:284
static constexpr int LoggerNotRunning
The signal logger is not running.
Definition StatusCodes.h:774
static constexpr int kListenFailed
kListenFailed
Definition StatusCodes.h:583
constexpr StatusCode(int val)
Definition StatusCodes.h:831
static constexpr int MotProfFirmThreshold
Motor Controller must have >= 3.2 firmware for motion profile control mode.
Definition StatusCodes.h:344
static constexpr int FeaturesNotAvailableYet
This feature will be supported in a future update.
Definition StatusCodes.h:330
static constexpr int TxFailed
Could not transmit CAN Frame.
Definition StatusCodes.h:365
static constexpr int InvalidTask
This diagnostic action is not supported.
Definition StatusCodes.h:105
static constexpr int FirmwareVersNotCompatible
Firmware version is not compatible with this version of Phoenix.
Definition StatusCodes.h:759
static constexpr int UserSignalLimitExceeded
The maximum number of loggable user signals has been exceeded.
Definition StatusCodes.h:815
static constexpr int InvalidLicenseResponse
InvalidLicenseResponse.
Definition StatusCodes.h:702
static constexpr int CompileSzIsWrong
CompileSzIsWrong.
Definition StatusCodes.h:97
static constexpr int CustomNameNotSupported
CustomNameNotSupported.
Definition StatusCodes.h:163
static constexpr int CouldNotDecodeDeviceFirmware
Device firmware could not be decoded.
Definition StatusCodes.h:730
constexpr bool operator==(int other) const
Definition StatusCodes.h:839
static constexpr int InvalidCanivCache
InvalidCanivCache.
Definition StatusCodes.h:252
static constexpr int FirmwareTooNew
Firmware Too New.
Definition StatusCodes.h:746
static constexpr int kReceiveFailed
kReceiveFailed
Definition StatusCodes.h:591
static constexpr int MusicInterrupted
Music interrupted due to one of the instruments being commanded a different control mode.
Definition StatusCodes.h:547
static constexpr int CouldNotRetrieveV6Firmware
Device firmware could not be retrieved.
Definition StatusCodes.h:724
static constexpr int FrequentConfigCalls
Do not apply or refresh configs periodically, as configs are blocking.
Definition StatusCodes.h:634
static constexpr int CannotReadSerialPort
CannotReadSerialPort.
Definition StatusCodes.h:264
static constexpr int MissingRoutineInLibrary
MissingRoutineInLibrary.
Definition StatusCodes.h:513
static constexpr int MusicFileNotFound
Could not find music file specified, try specifying an absolute path.
Definition StatusCodes.h:521
static constexpr int WrongRemoteLimitSwitchSource
Use RemoteLimitSwitchSource instead of LimitSwitchSource.
Definition StatusCodes.h:464
static constexpr int MoreThanOneFile
MoreThanOneFile.
Definition StatusCodes.h:117
static constexpr int kWinUsbInitFailed
kWinUsbInitFailed
Definition StatusCodes.h:599
static constexpr int CouldNotConfirmId
Could not verify that the changed ID took effect.
Definition StatusCodes.h:81
constexpr bool IsOK() const
Definition StatusCodes.h:859
static constexpr int CannotSerialToDevice
CannotSerialToDevice.
Definition StatusCodes.h:268
static constexpr int LibraryCouldNotBeLoaded
LibraryCouldNotBeLoaded.
Definition StatusCodes.h:509
static constexpr int NoControls
This device does not support new controls.
Definition StatusCodes.h:188
constexpr auto operator<=>(int other) const
Definition StatusCodes.h:843
static constexpr int ConfigMotionSCurveRequiresHigherFirm
Config Motion S Curve Strength features require firmware >=4.16.
Definition StatusCodes.h:495
static constexpr int MusicNotSupported
This device doesn't support MusicTone control mode.
Definition StatusCodes.h:551
static constexpr int GadgeteerDeviceNoSetId
Cannot set the ID of a gadgeteer device.
Definition StatusCodes.h:101
static constexpr int NodeIsInvalid
Specified device was not found.
Definition StatusCodes.h:122
static constexpr int InvalidSize
Size is invalid.
Definition StatusCodes.h:698
static constexpr int TimeoutCannotBeZero
Blocking operations, such as configs, cannot have a timeout of 0.
Definition StatusCodes.h:779
static constexpr int MODULE_NOT_INIT_GET_ERROR
MODULE_NOT_INIT_GET_ERROR.
Definition StatusCodes.h:444
static constexpr int CouldNotReqFactoryDefault
Unable to factory default this device.
Definition StatusCodes.h:159
static constexpr int ConfigFactoryDefaultRequiresHigherFirm
Config factory default features require firmware >=3.10.
Definition StatusCodes.h:491
static constexpr int FirmwareTooOld
Firmware Too Old.
Definition StatusCodes.h:397
static constexpr int CorruptedPOST
CorruptedPOST.
Definition StatusCodes.h:146
static constexpr int LicenseDownloadFailed
License did not successfully download to Device.
Definition StatusCodes.h:677
static constexpr int FeatureNotSupported
This feature is not supported.
Definition StatusCodes.h:138
static constexpr int kErrorPollingForDevices
kErrorPollingForDevices
Definition StatusCodes.h:718
static constexpr int NoCrfFile
Specified CRF file could not be found.
Definition StatusCodes.h:232
static constexpr int UnexpectedArbId
ArbID is incorrect.
Definition StatusCodes.h:383
static constexpr int GEN_PORT_ERROR
GEN_PORT_ERROR.
Definition StatusCodes.h:428
static constexpr int CANdleAnimSlotOutOfBounds
CANdleAnimSlotOutOfBounds.
Definition StatusCodes.h:475
static constexpr int CouldNotSendCanFrame
CouldNotSendCanFrame.
Definition StatusCodes.h:130
static constexpr int kInvalidClass
kInvalidClass
Definition StatusCodes.h:563
static constexpr int WheelRadiusTooSmall
Wheel Radius is too small, cannot get distance traveled.
Definition StatusCodes.h:448
static constexpr int CouldNotSerialize
The data frame could not be serialized for transmit.
Definition StatusCodes.h:750
static constexpr int InvalidDeviceSpec
InvalidDeviceSpec.
Definition StatusCodes.h:43
static constexpr int UnlicensedHootLog
Hoot log is not licensed.
Definition StatusCodes.h:800
static constexpr int NoDevicesOnBus
NoDevicesOnBus.
Definition StatusCodes.h:113
static constexpr int MechanismFaulted
The mechanism is disabled due to a fault in one of the devices.
Definition StatusCodes.h:754
static constexpr int ApiTooOld
This API version is too old for the firmware on the device.
Definition StatusCodes.h:769
static constexpr int DidNotGetDhcp
DidNotGetDhcp.
Definition StatusCodes.h:240
static constexpr int InvalidDeviceDescriptor
InvalidDeviceDescriptor.
Definition StatusCodes.h:126
static constexpr int MusicFileTooNew
Music file version is too new, update Phoenix to utilize this file.
Definition StatusCodes.h:530
static constexpr int UsingProFeatureOnUnlicensedDevice
Using a Pro only feature on an unlicensed device.
Definition StatusCodes.h:740
constexpr bool IsError() const
Definition StatusCodes.h:851
static constexpr int SignalNotSupportedOrMissing
The requested signal is missing or not supported.
Definition StatusCodes.h:824
static constexpr int kDeviceResponseIncorrect
kDeviceResponseIncorrect
Definition StatusCodes.h:714
static constexpr int SimDeviceAlreadyExists
SimDeviceAlreadyExists.
Definition StatusCodes.h:361
static constexpr int TicksPerRevZero
Ticks per revolution is 0, cannot get heading.
Definition StatusCodes.h:452
static constexpr int MissingSchema
The schema for the logged user signal is invalid or missing.
Definition StatusCodes.h:829
static constexpr int kFailedSetup
kFailedSetup
Definition StatusCodes.h:579
static constexpr int CannotLicenseWhileEnabled
Device cannot be licensed while it is control enabled.
Definition StatusCodes.h:784
constexpr friend bool operator==(StatusCode, StatusCode)=default
static constexpr int CouldNotReqSetConfigs
Could not apply the device configs.
Definition StatusCodes.h:172
static constexpr int InvalidDeviceModel
The provided model was not a valid device type.
Definition StatusCodes.h:819
static constexpr int CouldNotReqSetId
Unable to set ID to this device.
Definition StatusCodes.h:77
static constexpr int kInvalidPath
kInvalidPath
Definition StatusCodes.h:571
static constexpr int TxTimeout
CAN Transmit timed out.
Definition StatusCodes.h:379
static constexpr int InvalidNetwork
The given network/CAN bus is invalid.
Definition StatusCodes.h:639
static constexpr int MissingContext
Could not determine context from this device hash.
Definition StatusCodes.h:659
static constexpr int DeviceIsNull
DeviceIsNull.
Definition StatusCodes.h:192
static constexpr int MultiSignalNotSupported
The CAN bus does not support multi-signal synchronization.
Definition StatusCodes.h:643
static constexpr int SigNotUpdated
No new response to update signal.
Definition StatusCodes.h:420
static constexpr int TimeoutIso15Response
TimeoutIso15Response.
Definition StatusCodes.h:296
static constexpr int CannotWriteUdpPort
CannotWriteUdpPort.
Definition StatusCodes.h:280
static constexpr int ResourceNotAvailable
ResourceNotAvailable.
Definition StatusCodes.h:517
static constexpr int DistanceBetweenWheelsTooSmall
Distance between wheels is too small, cannot get heading.
Definition StatusCodes.h:456
static constexpr int RxTimeout
CAN frame not received/too-stale.
Definition StatusCodes.h:375
static constexpr int NotSupported
This is not supported.
Definition StatusCodes.h:655
static constexpr int InvalidFile
Could not open or read the given file.
Definition StatusCodes.h:788
static constexpr int NotFound
Could not find this value when searching for it.
Definition StatusCodes.h:651
#define CTREXPORT
Definition export.h:14
@ OK
The mechanism is running normally.
Definition motor_constants.h:14